BACK TO LIST

Syntax:

YourVariable = VA.Probable_no_of_words_recognized

Details :

VoiceAction processes the word in near real time of one second / two seconds as soon as you say it, hence it does not require to here a continuous dictation.

But your one word may get divided into two ( this is a good sign as it helps recognition)

If you keep a long delay and record more than one words then it will show all of the words (this is not recommended for the current interface)

As an example : Eight = "A" + "thh"

In this case it will show that it has found 2 words. First "A" and second "thh". So in this case Probable_no_of_words_recognized = 2

Note that, in case of processing a Wave file, which may contain more no. of words, that will give the real no. of processing that is going on.

Example :

Private Sub Timer1()

Label2.Caption = VA.Probable_no_of_words_recognized

End Sub

See Examples.

BACK TO LIST